aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp
index 67748c1f..de428f96 100644
--- a/test/libsolidity/SolidityEndToEndTest.cpp
+++ b/test/libsolidity/SolidityEndToEndTest.cpp
@@ -6634,28 +6634,6 @@ BOOST_AUTO_TEST_CASE(delete_on_array_of_structs)
}
-/*BOOST_AUTO_TEST_CASE(fixed_data_type)
-{
- char const* sourceCode = R"(
- contract C {
- fixed public pi = 3.141592;
- }
- )";
- compileAndRun(sourceCode, 0, "C");
-}
-
-BOOST_AUTO_TEST_CASE(fixed_data_type_expression)
-{
- char const* sourceCode = R"(
- contract C {
- function f(fixed a) returns (fixed) {
- return (a + 3);
- }
- }
- )";
- compileAndRun(sourceCode, 0, "C");
-}*/
-
BOOST_AUTO_TEST_CASE(internal_library_function)
{
// tests that internal library functions can be called from outside